home *** CD-ROM | disk | FTP | other *** search
/ AOL File Library: 2,801 to 2,900 / aol-file-protocol-4400-2801-to-2900.zip / AOLDLs / C++ Files Library / HyperCuber Source / HyperCuber 2.0 Source.sit / HyperCuber 2.0 Source / CHyperCuberApp.h < prev    next >
Text File  |  1994-05-02  |  807b  |  36 lines

  1. //|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2. //| CHyperCuberApp.h
  3. //|
  4. //| This file contains the interface to the HyperCuber Application class.
  5. //|___________________________________________________________________________
  6.  
  7. #define    _H_CHyperCuberApp        /* Include this file only once */
  8. #include <CApplication.h>
  9.  
  10. CLASS CControlsDirector;
  11. CLASS CHyperCuberDoc;
  12.  
  13. struct CHyperCuberApp : CApplication {
  14.  
  15.     CHyperCuberDoc        *itsDocument;        //  The document (which controls the graphics window)
  16.  
  17. public:
  18.  
  19.     void    IHyperCuberApp(void);
  20.     void    SetUpFileParameters(void);
  21.  
  22.     void    InspectSystem( void);
  23.  
  24.     void    UpdateMenus(void); 
  25.  
  26.     void    MakeDesktop(void);
  27.  
  28.     void    DoCommand(long theCommand);
  29.  
  30.     void    Exit(void);
  31.  
  32.     void    CreateDocument(void);
  33.     void    OpenDocument(SFReply *macSFReply);
  34.  
  35. };
  36.